home *** CD-ROM | disk | FTP | other *** search
/ Software USA: Back to School / Software USA: Back to School.iso / pc / children / decoder / run / decoder.exe / decoder.dxr / script_4.ls < prev    next >
Encoding:
Text File  |  1996-11-19  |  490 b   |  18 lines

  1. on mouseDown
  2.   set newLoc to the loc of sprite the clickOn + point(2, 2)
  3.   repeat while the stillDown
  4.     if rollOver(the clickOn) then
  5.       set the loc of sprite the clickOn to newLoc
  6.       updateStage()
  7.       next repeat
  8.     end if
  9.     set the loc of sprite the clickOn to newLoc - point(2, 2)
  10.     updateStage()
  11.   end repeat
  12.   set the loc of sprite the clickOn to newLoc - point(2, 2)
  13.   updateStage()
  14.   if rollOver(the clickOn) then
  15.     do(the name of member the mouseCast)
  16.   end if
  17. end
  18.